home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Pascal / Turbo Pascal 7.1 Final CD-RiP / EXAMPLES / DOCDEMOS / MINIMAL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-10-05  |  435 b   |  20 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Vision 2.0 Demo                        }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. program Minimal;
  9.  
  10. uses App;
  11.  
  12. var
  13.   MyApp: TApplication;
  14.  
  15. begin
  16.   MyApp.Init;
  17.   MyApp.Run;
  18.   MyApp.Done;
  19. end.
  20.